chore: release 1.7.0#27
Merged
Merged
Conversation
- Bump version to 1.7.0 in pyproject.toml, src/hyperping/_version.py, and uv.lock (lockfile auto-updated by uv). - Promote CHANGELOG `## [Unreleased]` to `## [1.7.0] - 2026-05-21`. - Update SECURITY.md supported-versions table: drop the stale "1.5.x" row, mark 1.7.x and 1.6.x as supported, and gate "< 1.6" as unsupported. - Exclude `docs/plans/` and `.worktrees/` from the sdist so internal planning artifacts and worktree scratch don't ship to PyPI. - Relax the CHANGELOG docs gate test: instead of insisting on the `## [Unreleased]` literal (which would block every release), assert that the most recent CHANGELOG section (Unreleased or any released version) documents the MCP rate-limit work and includes the Added/Fixed subsections. Verified: pytest 482 passed, ruff clean, mypy --strict clean. Sdist build verified to contain src/, scripts/, tests/, README, CHANGELOG, CONTRIBUTING, SECURITY, LICENSE, pyproject.toml -- no docs/, .claude/, .github/, .worktrees/, BACKLOG.md, dist/, or uv.lock.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Release-prep for v1.7.0. Bundles three things:
ensure_initialized()on both MCP clients) alongside three bug-fix categories. Updatespyproject.toml,src/hyperping/_version.py, anduv.lock.## [Unreleased]→## [1.7.0] - 2026-05-21.1.5.xrow, mark1.7.xand1.6.xas supported, gate< 1.6as unsupported.docs/plans/and.worktrees/from the sdist so internal planning artifacts don't ship to PyPI. (docs/plans/2026-05-21-mcp-rate-limit-fixes.mdalone is 65 KB of internal trycycle output.)## [Unreleased]heading (which would block every release). The test now finds the most recent CHANGELOG section (Unreleased or any released version) and verifies it documents the MCP rate-limit work with Added/Fixed subsections.Test plan
uv run pytest -q→ 482 passed, coverage 95.76%.uv run ruff check src tests→ clean.uv run mypy --strict src→ clean.uv build --sdist→dist/hyperping-1.7.0.tar.gz; verified contents containsrc/,scripts/,tests/,README.md,CHANGELOG.md,CONTRIBUTING.md,SECURITY.md,LICENSE,pyproject.toml; verified nodocs/,.claude/,.github/,.worktrees/,BACKLOG.md,dist/, oruv.lock.After this merges, tag
v1.7.0frommainto trigger the publish workflow.